home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': '',
- 'Copyright': '',
- 'Description': '',
- 'Host': 'Paint Shop Pro',
- 'Host Version': '8.00'
- }
-
- def Preset_OuterBevel():
- return {
- 'Ambience': 0,
- 'Angle': 315,
- 'Bevel': 0,
- 'Color': (255,255,255),
- 'Depth': 5,
- 'Elevation': 40,
- 'Intensity': 25,
- 'Shininess': 80,
- 'Smoothness': 10,
- 'Width': 1
- }
-
- def Do(Environment):
- App.Do( Environment, 'OuterBevel', Preset_OuterBevel())
-
-